home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tegl_c.exe
/
SAMPROGS.ZIP
/
SAMC0411.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-05-13
|
421 b
|
28 lines
/* samc04011.c */
#include <graphics.h>
#include "teglsys.h"
void main()
{
imagestkptr fs;
easytegl();
pushimage(1,1,100,100);
shadowbox(1,1,100,100);
fs = stackptr;
showmouse();
setmousecolor(GREEN);
do
if (mouse_buttons == 1)
fs = frameselectandmove(mouse_xcoord,mouse_ycoord);
while( mouse_buttons != 2 );
setmousecolor(WHITE);
}